View step info

Returns information about a specific step of the journey, like the attribute type, the required level, whether it is the first or the last step, etc.

Syntax

Copy
GET <host_address>/ftosapi/digital-journeys/{digital_journey_name}/view/{digitalJourneyItemName}/{entityFormSectionName}/{externalId}?culture=
 
 
Parameter Description
host_address The URL of the FintechOS platform server.
externalId The unique identifier of the digital journey.
digital_journey_name The name of the digital journey.
digitalJourneyItemName The name of the form driven flow.
entityFormSectionName The name of the step.
culture Optional parameter used to set the localization context, e.g. "?culture=ro-RO".
 
 

Response

Copy
{
    "fields": [
        {
            "name": "string",
            "displayName": "string",
            "type": "bool",
            "value": true,
            "requiredLevel": 0,
            "isReadOnly": false
        },
        {
            "name": "string",
            "displayName": "string",
            "type": "text",
            "value": "NextCalledUpdate",
            "requiredLevel": 0,
            "isReadOnly": false
        }
    ],
    "journeyStepType": "default",
    "journeyName": "string",
    "journeyItem": "string",
    "journeyStep": "string",
    "instanceId": "e8f797ba-c664-4e21-80d1-c20b89d78238",
    "externalId": "e8f797ba-c664-4e21-80d1-c20b89d78238"

Examples